home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000156_news@columbia.edu _Tue Mar 5 20:43:17 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id UAA03429 for <kermit.misc@watsun>; Tue, 5 Mar 1996 20:43:17 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id UAA04900 for kermit.misc@watsun; Tue, 5 Mar 1996 20:43:14 -0500 (EST)
  4. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!apollo.hp.com!lf.hp.com!news.dtc.hp.com!col.hp.com!nntp.coast.net!chi-news.cic.net!newsxfer2.itd.umich.edu!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Get transfer window frozen without exit
  8. Message-ID: <1996Mar4.200819.75840@cc.usu.edu>
  9. Date: 4 Mar 96 20:08:19 MDT
  10. References: <313b1dda.1430192@news.calvacom.fr>
  11. Organization: Utah State University
  12. Lines: 87
  13.  
  14. In article <313b1dda.1430192@news.calvacom.fr>, do11@calvacom.fr (Dominique Ottello) writes:
  15. > Hello from France.
  16. > I use MS-DOS Kermit 3.14 on a PC without any patch.
  17. > Here after are the Transfer macro I use and the setting values in
  18. > Mskermit.ini.
  19. > Sometimes (about 1% of cases) the transfer (get) window is frozen,
  20. > with only the retry
  21. > counter activity. Retry is set to 50 but the counter overpass this
  22. > value and there is no exit from the get command.
  23. > The calls of transfer are always the same :
  24. >   transfer 0100.KERMIT.DIRTXT.SA dirtxt.txt
  25. > the file 0100.KERMIT.DIRTXT.SA always exist.
  26. > Is there any possibility to time-out the get command ?
  27. > Why the retry counter overpass the setting value ?
  28. > Sincerely.
  29.  
  30.     I would guess the other side is not running a Kermit
  31. server or there is a mismatch of flow control kinds along the
  32. path. You can abandon the file transfer by following instructions
  33. at the bottom of the file transfer screen; press X or Z keys.
  34.         To see what is happening use LOG PACKETS to write each
  35. packet (and other arriving bytes) to file Packet.log. That should
  36. help diagnose what the other side is saying to you. Visually you
  37. can monitor that material by saying SET DEBUG ON.
  38.  
  39. >   -+- Transfer Macro -+-
  40. > define transfer define Trans_OK Oui,set input echo off,-
  41. > output {TRANSFER\13K\13K\13},input 60 {then reconnect},-
  42. > if failure define Trans_OK Non,-
  43. > pause 2,get, \%1, \%2,-
  44. > if failure define Trans_OK Non,-
  45. > pause 2,finish,output Q\13,input =,pause 2,set input echo on
  46. >   -+-  Mskermit.ini -+-
  47. > set take echo off
  48. > set com3 \x280 10
  49. > set port 3
  50. > set speed 38400
  51. > set flow-control RTS/CTS
  52. > set transfer character-set transparent
  53. > set file collision overwrite
  54. > set incomplete discard
  55. > set retry 50
  56.     That's 50 failures in a row for any individual packet, not
  57. worrying about failures on other packets. 50 * 4 = 200 sec.
  58.  
  59. > set send timeout 5
  60. > set receive timeout 4
  61.  
  62.     Best to leave these timeout values at their default
  63.     Below many items are the same as the defaults, so you can save
  64. typing and file size by omitting them.
  65.     Joe D.
  66.  
  67. > set timer on
  68. > set bell on
  69. > set duplex full
  70. > set prompt Kermit>
  71. > set terminal type VT320
  72. > set terminal wrap on
  73. > set terminal bytesize 8
  74. > set terminal bell audible
  75. > set terminal color 0
  76. > set terminal character-set ASCII
  77. > set terminal code-page CP437
  78. > set terminal upss DEC-MCS
  79. > set terminal keypad numeric
  80. > set terminal cursor underline
  81. > set terminal roll on
  82. > set terminal output-shift automatic
  83. > set transfer character-set transparent
  84. > set mode-line off
  85. > set input timeout-action proceed
  86. > set input default-timeout 600
  87. >             ======================================================
  88. >             == Dominique == do11@calvacom.fr == Paris == France ==
  89. >             ======================================================